@charset "UTF-8";
/* CSS Document */
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}

#main-header {
    background-image: url('images/logo2.png'); /* path to your image */
    background-size: cover; /* makes it cover the header */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* prevents repeating */
    height: 200px; /* set height for your header */
}




body{
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: antiquewhite;
}
h1,h2,h3{
    font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
    display: list-item;
    text-align: center;
	photo-align: center;
}
/* a) Wildcard selector */
*{
	margin: 0;
	padding: 0;
}

/* b) Wrapper */
#wrapper {
	margin:0 auto;
	max-width: 960px;
}

/* c) Main content containers */
main, article, aside, section, footer {
	margin: 0 auto;
	width: 100%;
	color: #000000;
	padding: 3%;
	border: 1px solid black;
}

/* d) h1 */
h1 {
	text-align: center;
}

/* e) Header */
header {
    background-image: url(logo2.png);
    background-attachment: fixed;
    width: 100%;
    min-height: 220px;
}

/* f) header h1 */
header h1 {
	padding-top: 50px;
	color: #000000;
	text-shadow: 1px 1px 10px #000000;
	font-size: 350%;
}

/* g) main p */
main p {
	text-align: center;
	font-size: 150%;
}

/* h) nav */
nav {
    background-color: #065ED8;
    top: 220px;
    text-align: center;
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    border-bottom: thick solid #FFFFFF;
    display: inherit;
}

/* i) nav a */
nav a {
	display: inline-block;
	text-decoration: none;
	padding: 1% 0;
	width: 48%;
	color: #000000;
	font-size: 130%;
}

/* j) nav a:hover */
nav a:hover {
	color: #FFFFFF;
	background-color: #065ED8;
}

/* k) main, footer */
main, footer {
	clear: both;
}

/* l) footer */
footer {
	text-align: center;
	background-color: #065ED8;
	font-weight: 900;
	font-size: 120%;
}
